3d4408
@@ -265,7 +265,7 @@
private void enqueue(NotificationEvent event) {
   private static class CleanerThread extends Thread {
     private RawStore rs;
     private int ttl;
-
+    static private long sleepTime = 60000;
 
     CleanerThread(HiveConf conf, RawStore rs) {
       super("CleanerThread");
@@ -281,8 +281,9 @@
public void run() {
         synchronized(NOTIFICATION_TBL_LOCK) {
           rs.cleanNotificationEvents(ttl);
         }
+        LOG.debug("Cleaner thread done");
         try {
-          Thread.sleep(60000);
+          Thread.sleep(sleepTime);
         } catch (InterruptedException e) {
           LOG.info("Cleaner thread sleep interupted", e);
         }
